home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Maximum CD 1999 January
/
maximum-cd-1999-01.iso
/
Symantec Visual Cafe
/
WDESAMPL.BIN
/
ExampleActionListener.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1997-06-23
|
806 b
|
14 lines
package actual;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
class ExampleActionListener implements ActionListener {
public ExampleActionListener() {
}
public void actionPerformed(ActionEvent var1) {
System.out.println("Button Pressed: " + var1.getActionCommand());
}
}